python深度学习教程实例代码案例讲解
.
├── Chapter02
│ ├── 02-3
│ │ └── 1.exception.py
│ ├── 02-4
│ │ ├── 1.walk.py
│ │ └── 2.argparser.py
│ ├── 02-5
│ │ ├── 7.static.py
│ │ ├── demo1.py
│ │ ├── demo2.py
│ │ ├── demo3.py
│ │ ├── demo4.py
│ │ └── function.py
│ └── 02-6
│ ├── 1.math_functions.py
│ ├── 2.plot.py
│ ├── __pycache__
│ ├── data.csv
│ ├── my_utils.py
│ └── scatter.png
├── Chapter03
│ └── 03-1
│ ├── 1.vector.py
│ ├── 2.matrix.py
│ ├── 3.matrix_2.py
│ ├── 4.limit.py
│ ├── 5.derivative.py
│ ├── 6.Taylor.py
│ └── 7.partial_derivative.py
├── Chapter04
│ ├── 04-1
│ │ ├── 1.find_function_minimization.py
│ │ └── 2.bp.py
│ ├── 04-2
│ │ ├── 1.tensor.py
│ │ ├── 2.Autograd.py
│ │ ├── 3.LossAndOptimizer.py
│ │ ├── 4.LossAndOptimizer_v2.py
│ │ ├── 5.model.py
│ │ └── 6.MNIST.py
│ └── 04-5
│ ├── 1.over fitting.py
│ ├── 2.feature_scaling.py
│ ├── 3.grad_vanish.py
│ └── main.py
└── Chapter05
├── 05-1
│ ├── 1.conv.py
│ ├── 2.Sequential.py
│ ├── 3.CNN.py
│ ├── 4.TransformLearning.py
│ ├── 5.resnet.py
│ └── model.ckpt
├── 05-2
│ └── fastrcnn.py
├── 05-4
│ ├── 1.matplotlib.py
│ ├── 2.torchvision.transform.py
│ ├── 3.speed test.py
│ ├── 4.load_model.py
│ ├── 5.gpu_tensor.py
│ ├── 6.selenium.py
│ ├── chromedriver.exe
│ ├── img1.jpg
│ ├── img1_copy.jpg
│ └── model.ckpt
├── 05-6
│ ├── 1.pyqt5_hello_world.py
│ ├── 2.pyqt5_qwidget.py
│ ├── 3.button.py
│ ├── 4.open_image.py
│ ├── 5.label_image.py
│ ├── 6.paint.py
│ ├── 8.horizontal_layout.py
│ ├── 9.grid_layout.py
│ └── img_cat_01.jpg
└── selenium
├── 1.selenium.py
└── chromedriver.exe
18 directories, 61 files
评论